home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / gs3.53 / fontmap < prev    next >
Text File  |  1996-01-10  |  14KB  |  385 lines

  1. %    Copyright (C) 1990, 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of Aladdin Ghostscript.
  3. % Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. % or distributor accepts any responsibility for the consequences of using it,
  5. % or for whether it serves any particular purpose or works at all, unless he
  6. % or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. % License (the "License") for full details.
  8. % Every copy of Aladdin Ghostscript must include a copy of the License,
  9. % normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. % the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. % under certain conditions described in the License.  Among other things, the
  12. % License requires that the copyright notice and this notice be preserved on
  13. % all copies.
  14.  
  15. % fontmap aka Fontmap - standard font catalog for Ghostscript.
  16.  
  17. % ----------------------------------------------------------------
  18.  
  19. % This file is a catalog of fonts known to Ghostscript.  Any font
  20. % that is to be loaded automatically when named must be in this catalog,
  21. % except for fonts that Ghostscript finds automatically in directories
  22. % named in the GS_FONTPATH environment variable.
  23.  
  24. % Each font has an entry consisting of three items:
  25. %
  26. %    - The name by which the font is known inside Ghostscript
  27. %    (a Ghostscript name preceded by a `/', or a string enclosed
  28. %    in parentheses).  This is used to find the file from which
  29. %    a font of a given name should be loaded.
  30. %
  31. %    - Information depending on whether this is a real font or a
  32. %    font alias:
  33. %
  34. %        - For real fonts, the name of the Ghostscript font
  35. %        file (a Ghostscript string, enclosed in parentheses).
  36. %        The filename should include the extension, which (by
  37. %        convention) is `.gsf'.  `.pfa' and `.pfb' files are
  38. %        also usable as fonts for Ghostscript.
  39. %
  40. %        - For font aliases, the name of the font which should
  41. %        be used when this one is requested, preceded by a
  42. %        `/'.  See the entry for Charter below for an example.
  43. %        Note that an alias name cannot be enclosed in parentheses.
  44. %
  45. %    - At least one space or tab, and a terminating semicolon.
  46.  
  47. % Because of limitations in the MS-DOS environment, Ghostscript font
  48. % file names must be no more than 8 characters long, must consist only
  49. % of LOWER CASE letters, digits, and underscores, and must start with a
  50. % letter.  Font names, on the other hand, need only obey the syntax of
  51. % names in the Ghostscript language, which is much more liberal.
  52.  
  53. % Most of the Ghostscript fonts were created automatically from freely
  54. % available bitmaps.  There is a makefile (fonts.mak) that specifies
  55. % how this conversion was done.  fonts.mak also specifies, for each such
  56. % converted font, its uniqueID (an integer used to identify distinct fonts
  57. % within the Ghostscript font machinery), and its encoding (the mapping
  58. % from character codes in a string to character names).  For more detailed
  59. % information, read fonts.mak.
  60.  
  61. % The following table is actually a Ghostscript data structure.
  62. % If you add new entries, be sure to copy the punctuation accurately;
  63. % in particular, you must leave at least one space or tab between each
  64. % field in the entry.  Also, please read fonts.doc for important information
  65. % about font names.
  66.  
  67. % Note that .pfa and .pfb fonts are compatible with Adobe Type Manager
  68. % and other programs that don't include full PostScript interpreters,
  69. % as well as with PostScript interpreters; .gsf fonts are compatible with
  70. % PostScript interpreters, but not with ATM or similar programs.
  71.  
  72. % Fonts converted from bitmaps.
  73.  
  74. /AvantGarde-Book        (pagk.gsf)    ;
  75. /AvantGarde-BookOblique        (pagko.gsf)    ;
  76. /AvantGarde-Demi        (pagd.gsf)    ;
  77. /AvantGarde-DemiOblique        (pagdo.gsf)    ;
  78.  
  79. /Bookman-Light            (pbkl.gsf)    ;
  80. /Bookman-LightItalic        (pbkli.gsf)    ;
  81. /Bookman-Demi            (pbkd.gsf)    ;
  82. /Bookman-DemiItalic        (pbkdi.gsf)    ;
  83.  
  84. % The converted Bitstream Charter fonts have been replaced by Type 1 fonts
  85. % contributed to the X11R5 distribution; see below.
  86. %/Charter-Roman            (bchr.gsf)    ;
  87. %/Charter-Italic        (bchri.gsf)    ;
  88. %/Charter-Bold            (bchb.gsf)    ;
  89. %/Charter-BoldItalic        (bchbi.gsf)    ;
  90.  
  91. % The converted Courier fonts have been replaced by Type 1 fonts
  92. % contributed to the X11R5 distribution; see below.
  93. %/Courier            (pcrr.gsf)    ;
  94. %/Courier-Oblique        (pcrro.gsf)    ;
  95. %/Courier-Bold            (pcrb.gsf)    ;
  96. %/Courier-BoldOblique        (pcrbo.gsf)    ;
  97. % Quite a few PostScript files reference Courier-Oblique rather than
  98. % Courier-Italic, so we need some aliases here.
  99. /Courier-Oblique        /Courier-Italic        ;
  100. /Courier-BoldOblique        /Courier-BoldItalic    ;
  101.  
  102. /Helvetica            (phvr.gsf)    ;
  103. /Helvetica-Oblique        (phvro.gsf)    ;
  104. /Helvetica-Bold            (phvb.gsf)    ;
  105. /Helvetica-BoldOblique        (phvbo.gsf)    ;
  106. % We don't have a full set of Helvetica-Narrow....
  107. /Helvetica-Narrow        (phvrrn.gsf)    ;
  108.     /Helvetica-Narrow-Bold        /Helvetica-Narrow    ;
  109.  
  110. /NewCenturySchlbk-Roman        (pncr.gsf)    ;
  111. /NewCenturySchlbk-Italic    (pncri.gsf)    ;
  112. /NewCenturySchlbk-Bold        (pncb.gsf)    ;
  113. /NewCenturySchlbk-BoldItalic    (pncbi.gsf)    ;
  114.  
  115. /Palatino-Roman            (pplr.gsf)    ;
  116. /Palatino-Italic        (pplri.gsf)    ;
  117. /Palatino-Bold            (pplb.gsf)    ;
  118. /Palatino-BoldItalic        (pplbi.gsf)    ;
  119.  
  120. /Symbol                (psyr.gsf)    ;
  121.  
  122. /Times-Roman            (ptmr.gsf)    ;
  123. /Times-Italic            (ptmri.gsf)    ;
  124. /Times-Bold            (ptmb.gsf)    ;
  125. /Times-BoldItalic        (ptmbi.gsf)    ;
  126.  
  127. /ZapfChancery            (zcr.gsf)    ;
  128. /ZapfChancery-Oblique        (zcro.gsf)    ;
  129. /ZapfChancery-Bold        (zcb.gsf)    ;
  130. % Some PostScript files reference the MediumItalic font....
  131. /ZapfChancery-MediumItalic    /ZapfChancery-Oblique    ;
  132.  
  133. /ZapfDingbats            (pzdr.gsf)    ;
  134.  
  135.  
  136. %
  137. % Type 1 fonts contributed to the X11R5 distribution.
  138. %
  139.  
  140. % The following notice accompanied the Charter fonts.
  141. %
  142. % (c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA.
  143. %
  144. % You are hereby granted permission under all Bitstream propriety rights
  145. % to use, copy, modify, sublicense, sell, and redistribute the 4 Bitstream
  146. % Charter (r) Type 1 outline fonts and the 4 Courier Type 1 outline fonts
  147. % for any purpose and without restriction; provided, that this notice is
  148. % left intact on all copies of such fonts and that Bitstream's trademark
  149. % is acknowledged as shown below on all unmodified copies of the 4 Charter
  150. % Type 1 fonts.
  151. %
  152. % BITSTREAM CHARTER is a registered trademark of Bitstream Inc.
  153.  
  154. % The Bitstream Charter fonts have different names (CharterBT-
  155. % instead of Charter-), but Ghostscript doesn't care.
  156. /Charter-Roman            (bchr.pfa)    ;
  157. /Charter-Italic            (bchri.pfa)    ;
  158. /Charter-Bold            (bchb.pfa)    ;
  159. /Charter-BoldItalic        (bchbi.pfa)    ;
  160.  
  161. % The following notice accompanied the Courier font:
  162. %
  163. %   IBM Courier - Copyright (c) IBM Corporation 1990, 1991
  164. %
  165. %   You are hereby granted permission under the terms of the IBM/MIT X
  166. %   Consortium Courier Typefont agreement to execute, reproduce,
  167. %   distribute, display, market, sell and otherwise transfer copies of
  168. %   the IBM Courier font to third parties.
  169. %
  170. %   The font is provided "AS IS" without charge.  NO WARRANTIES OR
  171. %   INDEMNIFICATION ARE GIVEN, WHETHER EXPRESS OR IMPLIED INCLUDING, BUT
  172. %   LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  173. %   A PARTICULAR PURPOSE.
  174.  
  175. /Courier        (ncrr.pfa)    ;
  176. /Courier-Italic        (ncrri.pfa)    ;
  177. /Courier-Bold        (ncrb.pfa)    ;
  178. /Courier-BoldItalic    (ncrbi.pfa)    ;
  179.  
  180. % The following notice accompanied the Utopia font:
  181. %
  182. %   Permission to use, reproduce, display and distribute the listed
  183. %   typefaces is hereby granted, provided that the Adobe Copyright notice
  184. %   appears in all whole and partial copies of the software and that the
  185. %   following trademark symbol and attribution appear in all unmodified
  186. %   copies of the software:
  187. %
  188. %           Copyright (c) 1989 Adobe Systems Incorporated
  189. %           Utopia (R)
  190. %           Utopia is a registered trademark of Adobe Systems Incorporated
  191. %
  192. %   The Adobe typefaces (Type 1 font program, bitmaps and Adobe Font
  193. %   Metric files) donated are:
  194. %
  195. %           Utopia Regular
  196. %           Utopia Italic
  197. %           Utopia Bold
  198. %           Utopia Bold Italic
  199.  
  200. /Utopia-Regular        (putr.pfa)    ;
  201. /Utopia-Italic        (putri.pfa)    ;
  202. /Utopia-Bold        (putb.pfa)    ;
  203. /Utopia-BoldItalic    (putbi.pfa)    ;
  204.  
  205. %
  206. % Fonts contributed by URW GmbH for distribution under the GNU License.
  207. % The following notice accompanied these fonts:
  208. %
  209. % N019003L Nimbus Sans L Regular PostScript Type 1 Font Program
  210. % N021003L Nimbus Roman No9 L Regular PostScript Type 1 Font Program
  211. % U004006T URW Grotesk 2031 Bold PostScript Type 1 Font Program
  212. % U003043T URW Antiqua 2051 Regular Condensed PostScript Type 1 Font Program
  213. %
  214. % Copyright (c) 1992 URW GmbH, Hamburg, Germany
  215. %
  216. % This program is free software; you can redistribute it and/or modify
  217. % it under the terms of the GNU General Public License as published by
  218. % the Free Software Foundation; either version 2 of the License, or
  219. % (at your option) later version.
  220. %
  221. % This program is distributed in the hope that it will be useful,
  222. % but WITHOUT ANY WARRANTY; wihtout even the implied warranty of
  223. % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  224. % See the GNU General Public License for more details.
  225. %
  226. % You should have received a copy of the GNU General Public License
  227. % along with this program; if not, write to the Free Software
  228. % Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  229. %
  230. % Address:
  231. % URW GmbH
  232. % PC Support
  233. % Harksheider Strasse 102
  234. % 2000 Hamburg 65
  235. % Germany
  236. % Phone: +49 40 60 60 50       (Reception)
  237. % Phone: +49 40 60 60 52 30   (PC Support)
  238. % Fax    : +49 40 60 60 52 52
  239. %
  240.  
  241. % Nimbus Sans L Regular is a good work-alike for Helvetica:
  242. /Helvetica            /NimbusSansL-Regular    ;
  243. /NimbusSansL-Regular        (n019003l.gsf)    ;
  244. % Nimbus Roman No9 L Regular is a good work-alike for Times Roman:
  245. /Times-Roman            /NimbusRomanNo9L-Regular    ;
  246. /NimbusRomanNo9L-Regular    (n021003l.gsf)    ;
  247. % The other fonts don't correspond to any in the base set of 35....
  248. /URWAntiquaT-RegularCondensed    (u003043t.gsf)    ;
  249. /URWGroteskT-Bold        (u004006t.gsf)    ;
  250.  
  251. %
  252. % Shareware Kana fonts.  These are subject to the following notice:
  253. %
  254. % These copyrighted fonts were developed by Kevin Hartig. Permission is
  255. % granted to freely distribute them in entirety along with this statement.
  256. % This is shareware. If you decide to use these fonts please contribute
  257. % $10 US to help support further freeware and shareware software development.
  258. % Questions and comments may be sent to:
  259. %
  260. % hartig@fsl.noaa.gov
  261. % khartig@nyx.cs.du.edu
  262. %
  263. % Kevin Hartig
  264. % 1126 Collyer Street
  265. % Longmont, CO 80501 USA
  266. % copyright 1993.
  267.  
  268. % Hiragana and Katakana fonts.  The character names are inappropriate,
  269. % and the encoding is probably not related to any known standard.
  270.  
  271. /Calligraphic-Hiragana        (fhirw.gsf)    ;
  272. /Calligraphic-Katakana        (fkarw.gsf)    ;
  273.  
  274. %
  275. % Public-domain fonts.  These have no copyright, and are of unknown quality.
  276.  
  277. % Cyrillic fonts.  The character names are inappropriate,
  278. % and the encoding is probably not related to any known standard.
  279.  
  280. /Shareware-Cyrillic-Regular    (fcyr.gsf)    ;
  281. /Shareware-Cyrillic-Italic    (fcyri.gsf)    ;
  282. % Aliases
  283. /Cyrillic            /Cyrillic-Regular    ;
  284. /Cyrillic-Regular        /Shareware-Cyrillic-Regular    ;
  285. /Cyrillic-Italic        /Shareware-Cyrillic-Italic    ;
  286.  
  287. %
  288. % Fonts converted from Hershey outlines.  These are constructed and
  289. % maintained manually.  These are also in the public domain.
  290. %
  291. % The suggested UniqueID's and filenames are constructed differently for
  292. % these than for the ones above, because of the strange way that the Hershey
  293. % fonts were constructed.  The scheme for these looks like:
  294. %
  295. % 42TTXY0
  296. %
  297. % TT = typeface, X = ``class'', Y = variation
  298. %
  299. % The typeface names and numbers are listed in fonts.mak.
  300. %
  301. % class:
  302. % 0 = normal            = r
  303. % 1 = simplex            = s
  304. % 2 = complex            = c
  305. % 3 = triplex            = t
  306. % 4 = duplex            = d
  307. %
  308. % variation:
  309. % 0 = normal            (omitted)
  310. % 1 = oblique            = o
  311. % 2 = italic            = i
  312. % 3 = bold            = b
  313. % 4 = bold oblique        = bo
  314. % 5 = bold italic        = bi
  315. %
  316.  
  317. % Fonts created by Thomas Wolff <wolff@inf.fu-berlin.de>, by adding
  318. % accents, accented characters, and various other non-alphabetics
  319. % to the original Hershey fonts.  These are "freeware", not to be sold.
  320.  
  321. /Hershey-Gothic-English        (hrger.pfa)    ;    % 5066533
  322. /Hershey-Gothic-German        (hrgrr.pfa)    ;
  323. /Hershey-Gothic-Italian        (hritr.pfa)    ; 
  324.  
  325. /Hershey-Plain-Duplex        (hrpld.pfa)    ;
  326. /Hershey-Plain-Duplex-Italic    (hrpldi.pfa)    ;
  327. /Hershey-Plain-Triplex        (hrplt.pfa)    ;
  328. /Hershey-Plain-Triplex-Italic    (hrplti.pfa)    ;
  329.  
  330. /Hershey-Script-Complex        (hrscc.pfa)    ;
  331. /Hershey-Script-Simplex        (hrscs.pfa)    ;    % 5066541
  332.  
  333. % Fonts created algorithmically from the above.
  334.  
  335. /Hershey-Gothic-English-Bold        (hrgerb.gsf)    ;    % 5066542
  336. /Hershey-Gothic-English-Oblique        (hrgero.gsf)    ;
  337. /Hershey-Gothic-English-SemiBold    (hrgerd.gsf)    ;
  338. /Hershey-Gothic-German-Bold        (hrgrrb.gsf)    ;
  339. /Hershey-Gothic-German-Oblique        (hrgrro.gsf)    ;
  340. /Hershey-Gothic-Italian-Bold        (hritrb.gsf)    ;
  341. /Hershey-Gothic-Italian-Oblique        (hritro.gsf)    ;
  342.  
  343. /Hershey-Plain-Duplex-Bold        (hrpldb.gsf)    ;
  344. /Hershey-Plain-Duplex-Bold-Italic    (hrpldbi.gsf)    ;
  345. /Hershey-Plain-Triplex-Bold        (hrpltb.gsf)    ;
  346. /Hershey-Plain-Triplex-Bold-Italic    (hrpltbi.gsf)    ;
  347.  
  348. /Hershey-Script-Complex-Bold        (hrsccb.gsf)    ;
  349. /Hershey-Script-Complex-Oblique        (hrscco.gsf)    ;
  350. /Hershey-Script-Simplex-Bold        (hrscsb.gsf)    ;
  351. /Hershey-Script-Simplex-Oblique        (hrscso.gsf)    ;    % 5066556
  352.  
  353. % Fonts consisting only of characters from the original Hershey
  354. % distribution.  These are Type 3 fonts.
  355.  
  356. /Hershey-Greek-Complex            (hrgkc.gsf)    ;    % 5066557
  357. /Hershey-Greek-Simplex            (hrgks.gsf)    ;
  358.  
  359. /Hershey-Plain                (hrplr.gsf)    ;
  360. /Hershey-Plain-Simplex            (hrpls.gsf)    ;    % 5066560
  361.  
  362. % Fonts created algorithmically from the above.
  363.  
  364. /Hershey-Plain-Bold            (hrplrb.gsf)    ;    % 5066561
  365. /Hershey-Plain-Bold-Oblique        (hrplrbo.gsf)    ;
  366. /Hershey-Plain-Oblique            (hrplro.gsf)    ;
  367. /Hershey-Plain-Simplex-Bold        (hrplsb.gsf)    ;
  368. /Hershey-Plain-Simplex-Bold-Oblique    (hrplsbo.gsf)    ;
  369. /Hershey-Plain-Simplex-Oblique        (hrplso.gsf)    ;    % 5066566
  370.  
  371. % This font, and only this font among the Hershey fonts, uses
  372. % the SymbolEncoding.
  373.  
  374. /Hershey-Symbol                (hrsyr.gsf)    ;    % 5066567
  375.